home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 January / PC Plus Super CD No55a (PCP-147A-1-99) (Disc 1) (1998).iso / full / delphi1 / Disk15 / OLE2DOC.PAK / OLE.DPR next >
Encoding:
Text File  |  1995-08-24  |  226 b   |  14 lines

  1. program Ole;
  2.  
  3. uses
  4.   Forms,
  5.   Oleframe in 'OLEFRAME.PAS' {OLEFrameForm},
  6.   Oleobj in 'OLEOBJ.PAS' {OLEObjectForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TOLEFrameForm, OLEFrameForm);
  12.   Application.Run;
  13. end.
  14.